INSERT INTO "Lookup" ( "Name", "Description")
VALUES ('DoctorWeek', 'To select what are the weeks available');


INSERT INTO "LookupValue" ( "LookupId", "Name", "CreatedDate", "CreatedBy")
VALUES (22, 'EveryDay', Current_date, 1029);


INSERT INTO "LookupValue" ( "LookupId", "Name", "CreatedDate", "CreatedBy")
VALUES (22, 'Weekly', Current_date, 1029);


INSERT INTO "LookupValue" ( "LookupId", "Name", "CreatedDate", "CreatedBy")
VALUES (22, 'Biweekly', Current_date, 1029);
					 
									 
alter table "ProviderAvailability" add column "DoctorWeekId" integer;

									 
alter table "ProviderBreak" add column "DoctorWeekId" integer;